home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src890906.arc / MAKEFILE < prev    next >
Text File  |  1989-08-19  |  10KB  |  213 lines

  1. #
  2. #    Makefile for KA9Q TCP/IP package for PC clones with Turbo C
  3. #
  4. # switches:
  5. #    define the ones you want in the CFLAGS definition...
  6. #
  7. #    TRACE        - turn on tracing/debugging code
  8. #
  9. #    AMIGA        - include Amiga specific code
  10. #    MSDOS        - include Messy-Dos specific code
  11. #    UNIX        - Use UNIX file format conventions
  12. #    CPM        - Use CP/M file format conventions
  13.  
  14. #
  15. # CFLAGS for typical IBM-PC installation
  16. #
  17. CFLAGS=    -a -d -f- -G -O -Z -DMSDOS 
  18. MODEL=-ml
  19. # Assembler flags
  20. AFLAGS=-mx -t -DMEMMOD=LARGE
  21. all:    net.exe
  22.         
  23. .c.obj:
  24.     tcc -c $(MODEL) $(CFLAGS) $*
  25.  
  26. .asm.obj:
  27.     tasm $(AFLAGS) $*;
  28.  
  29. CLIENTS= telnet.obj ftpcli.obj finger.obj smtpcli.obj
  30.  
  31. SERVERS= tnserv.obj ftpserv.obj smisc.obj smtpserv.obj fingerd.obj
  32.  
  33. INTERNET= tcpcmd.obj tcpuser.obj tcptimer.obj tcpout.obj tcpin.obj tcpsubr.obj \
  34.     udpcmd.obj udp.obj \
  35.     domain.obj \
  36.     ipcmd.obj ip.obj iproute.obj \
  37.     icmpcmd.obj icmp.obj icmpmsg.obj \
  38.     arpcmd.obj arp.obj \
  39.     netuser.obj
  40.  
  41. AX25=    ax25cmd.obj ax_mbx.obj ax25user.obj ax25.obj lapbtime.obj lapb.obj \
  42.     kiss.obj ax25subr.obj 
  43.  
  44. NETROM=    nrcmd.obj nr4user.obj nr4timer.obj nr4.obj nr4subr.obj \
  45.     nr3.obj nrs.obj nrsubr.obj 
  46.  
  47. NET=    ftpsubr.obj socket.obj asy.obj slip.obj \
  48.     iface.obj timer.obj ttydriv.obj cmdparse.obj mbuf.obj \
  49.     misc.obj pathname.obj audit.obj files.obj \
  50.     kernel.obj ksubr.obj alloc.obj getopt.obj
  51.  
  52. DUMP=     trace.obj enetdump.obj \
  53.     kissdump.obj ax25dump.obj arpdump.obj nrdump.obj \
  54.     ipdump.obj icmpdump.obj udpdump.obj tcpdump.obj
  55.  
  56. PCOBJS= pc.obj dirutil.obj eccmd.obj ec.obj pktdrvr.obj enet.obj hapn.obj \
  57.     hs.obj pc100.obj eagle.obj \
  58.     8530.obj 8250.obj ecvec.obj pkvec.obj asyvec.obj hsvec.obj \
  59.     pc100vec.obj eaglevec.obj hapnvec.obj \
  60.     pcgen.obj 
  61.  
  62. mkdep.exe: mkdep.c
  63.     tcc mkdep.c
  64.     del mkdep.obj
  65.  
  66. net.exe: main.obj config.obj version.obj session.obj clients.lib servers.lib internet.lib \
  67.     net.lib netrom.lib ax25.lib pc.lib dump.lib
  68.     tcc $(MODEL) -M -y -enet main.obj config.obj version.obj session.obj *.lib
  69.  
  70. apptest.exe: apptest.obj appint.obj external.h
  71.     tcc -ml -O -Z -M -y apptest.obj appint.obj
  72.  
  73. apptest.obj: apptest.c appint.h
  74.     tcc -c -ml -O -Z -M -y apptest.c
  75.  
  76. appint.obj: appint.c external.h
  77.     tcc -c -ml -O -Z -M -y appint.c
  78.  
  79. clients.lib: $(CLIENTS) clients.tl
  80.     del clients.lib
  81.     tlib /c clients.lib @clients.tl
  82.  
  83. servers.lib: $(SERVERS) servers.tl
  84.     del servers.lib
  85.     tlib /c servers.lib @servers.tl
  86.  
  87. internet.lib: $(INTERNET) internet.tl
  88.     del internet.lib
  89.     tlib /c internet.lib @internet.tl
  90.  
  91. ax25.lib: $(AX25) ax25.tl
  92.     del ax25.lib
  93.     tlib /c ax25.lib @ax25.tl
  94.  
  95. netrom.lib: $(NETROM) netrom.tl
  96.     del netrom.lib
  97.     tlib /c netrom.lib @netrom.tl
  98.  
  99. net.lib: $(NET) net.tl
  100.     del net.lib
  101.     tlib /c net.lib @net.tl
  102.  
  103. dump.lib: $(DUMP) dump.tl
  104.     del dump.lib
  105.     tlib /c dump.lib @dump.tl
  106.  
  107. pc.lib: $(PCOBJS) pc.tl
  108.     del pc.lib
  109.     tlib /c pc.lib @pc.tl
  110.  
  111. clean:    nul
  112.     del *.lib
  113.     del *.obj
  114.     del *.exe
  115.     del *.sym
  116.  
  117. #make begin says to start from the beginning.
  118. begin: clean
  119.     tcc -c $(CFLAGS) $(MODEL) *.c
  120.     tasm $(AFLAGS) *.asm
  121.  
  122. # this section generated by mkdep
  123. 8250.obj: 8250.c global.h iface.h asy.h pc.h slip.h proc.h 8250.h
  124. alloc.obj: alloc.c global.h proc.h
  125. arp.obj: arp.c global.h mbuf.h timer.h iface.h enet.h ax25.h icmp.h ip.h arp.h icmp.h
  126. arpcmd.obj: arpcmd.c global.h mbuf.h timer.h enet.h ax25.h arp.h netuser.h cmdparse.h commands.h
  127. arpdump.obj: arpdump.c global.h mbuf.h timer.h arp.h netuser.h
  128. asy.obj: asy.c global.h iface.h asy.h ax25.h kiss.h slip.h nrs.h config.h proc.h commands.h
  129. audit.obj: audit.c global.h mbuf.h
  130. ax25.obj: ax25.c global.h mbuf.h iface.h timer.h arp.h slip.h ax25.h lapb.h netrom.h ip.h
  131. ax25cmd.obj: ax25cmd.c global.h mbuf.h timer.h proc.h iface.h ax25.h lapb.h cmdparse.h socket.h ax25tnc.h ax_mbx.h session.h tty.h nr4.h commands.h
  132. ax25dump.obj: ax25dump.c global.h mbuf.h ax25.h timer.h lapb.h trace.h socket.h
  133. ax25subr.obj: ax25subr.c global.h mbuf.h timer.h ax25.h lapb.h
  134. ax25user.obj: ax25user.c global.h mbuf.h timer.h iface.h lapb.h ax25.h lapb.h
  135. ax_mbx.obj: ax_mbx.c global.h ax_mbx.h cmdparse.h proc.h socket.h usock.h ax25.h smtp.h
  136. cmdparse.obj: cmdparse.c global.h cmdparse.h proc.h
  137. config.obj: config.c global.h mbuf.h proc.h cmdparse.h config.h daemon.h timer.h iface.h usock.h kiss.h enet.h ax25.h netrom.h ip.h tcp.h udp.h commands.h trace.h
  138. dirutil.obj: dirutil.c global.h dirutil.h commands.h
  139. domain.obj: domain.c global.h mbuf.h timer.h netuser.h socket.h cmdparse.h proc.h domain.h commands.h
  140. drreset.obj: drreset.c global.h 8530.h
  141. drtest.obj: drtest.c 8530.h
  142. eagle.obj: eagle.c global.h mbuf.h iface.h eagle.h 8530.h ax25.h trace.h pc.h
  143. ec.obj: ec.c global.h mbuf.h enet.h iface.h ec.h timer.h arp.h trace.h pc.h
  144. eccmd.obj: eccmd.c global.h mbuf.h iface.h ec.h enet.h
  145. enet.obj: enet.c global.h mbuf.h iface.h timer.h arp.h ip.h enet.h
  146. enetdump.obj: enetdump.c global.h mbuf.h enet.h trace.h
  147. files.obj: files.c global.h
  148. finger.obj: finger.c global.h mbuf.h socket.h session.h proc.h netuser.h
  149. fingerd.obj: fingerd.c global.h mbuf.h socket.h session.h proc.h dirutil.h
  150. ftpcli.obj: ftpcli.c global.h mbuf.h session.h cmdparse.h timer.h proc.h tty.h socket.h ftp.h ftpcli.h commands.h netuser.h
  151. ftpserv.obj: ftpserv.c global.h mbuf.h socket.h ftp.h ftpserv.h proc.h dirutil.h
  152. ftpsubr.obj: ftpsubr.c global.h mbuf.h socket.h ftp.h
  153. getopt.obj: getopt.c
  154. hapn.obj: hapn.c global.h timer.h mbuf.h iface.h hapn.h ax25.h trace.h pc.h proc.h
  155. hs.obj: hs.c global.h mbuf.h iface.h hs.h 8530.h ax25.h trace.h pc.h proc.h
  156. icmp.obj: icmp.c global.h mbuf.h internet.h timer.h iface.h ip.h icmp.h netuser.h tcp.h
  157. icmpcmd.obj: icmpcmd.c global.h icmp.h mbuf.h netuser.h internet.h timer.h socket.h proc.h session.h cmdparse.h commands.h
  158. icmpdump.obj: icmpdump.c global.h mbuf.h internet.h icmp.h trace.h ip.h
  159. icmpmsg.obj: icmpmsg.c global.h
  160. iface.obj: iface.c global.h iface.h
  161. ip.obj: ip.c global.h config.h mbuf.h timer.h internet.h iface.h ip.h icmp.h tcp.h udp.h
  162. ipcmd.obj: ipcmd.c global.h mbuf.h internet.h timer.h netuser.h iface.h ip.h cmdparse.h commands.h
  163. ipdump.obj: ipdump.c global.h mbuf.h internet.h timer.h iface.h ip.h trace.h netuser.h
  164. iproute.obj: iproute.c global.h mbuf.h internet.h timer.h netuser.h ip.h icmp.h iface.h trace.h
  165. kernel.obj: kernel.c global.h mbuf.h proc.h timer.h socket.h pc.h
  166. kiss.obj: kiss.c global.h mbuf.h iface.h kiss.h slip.h ax25.h
  167. kissdump.obj: kissdump.c global.h mbuf.h kiss.h ax25.h trace.h
  168. ksubr.obj: ksubr.c global.h proc.h pc.h commands.h
  169. lapb.obj: lapb.c global.h mbuf.h timer.h ax25.h lapb.h ip.h netrom.h
  170. lapbtime.obj: lapbtime.c global.h mbuf.h ax25.h timer.h lapb.h
  171. lcsum.obj: lcsum.c global.h ip.h
  172. main.obj: main.c global.h mbuf.h socket.h iface.h ftpcli.h telnet.h ax25tnc.h remote.h session.h cmdparse.h ax25.h kiss.h enet.h timer.h proc.h tty.h daemon.h usock.h netrom.h ip.h tcp.h udp.h pc.h commands.h
  173. mbuf.obj: mbuf.c global.h mbuf.h proc.h
  174. misc.obj: misc.c global.h socket.h
  175. mkdep.obj: mkdep.c
  176. netuser.obj: netuser.c global.h netuser.h
  177. nr3.obj: nr3.c global.h mbuf.h iface.h timer.h arp.h slip.h ax25.h netrom.h nr4.h lapb.h socket.h trace.h ip.h
  178. nr4.obj: nr4.c global.h mbuf.h timer.h ax25.h lapb.h netrom.h nr4.h
  179. nr4subr.obj: nr4subr.c global.h mbuf.h timer.h ax25.h netrom.h nr4.h lapb.h
  180. nr4timer.obj: nr4timer.c global.h mbuf.h timer.h ax25.h lapb.h netrom.h nr4.h
  181. nr4user.obj: nr4user.c global.h mbuf.h timer.h ax25.h lapb.h netrom.h nr4.h
  182. nrcmd.obj: nrcmd.c global.h mbuf.h ax25.h ax_mbx.h netrom.h nr4.h timer.h iface.h lapb.h cmdparse.h session.h socket.h commands.h
  183. nrdump.obj: nrdump.c global.h mbuf.h netrom.h trace.h
  184. nrs.obj: nrs.c global.h mbuf.h iface.h ax25.h nrs.h asy.h trace.h
  185. nrsubr.obj: nrsubr.c global.h mbuf.h timer.h ax25.h netrom.h lapb.h
  186. pathname.obj: pathname.c global.h dirutil.h
  187. pc.obj: pc.c global.h mbuf.h internet.h iface.h cmdparse.h pc.h proc.h
  188. pc100.obj: pc100.c global.h mbuf.h iface.h pc100.h 8530.h ax25.h trace.h pc.h
  189. pktdrvr.obj: pktdrvr.c global.h proc.h mbuf.h enet.h ax25.h slip.h kiss.h iface.h ec.h timer.h arp.h trace.h pktdrvr.h config.h
  190. sendfax.obj: sendfax.c global.h smtp.h
  191. session.obj: session.c global.h config.h mbuf.h socket.h ftpcli.h telnet.h icmp.h ax25tnc.h session.h cmdparse.h timer.h proc.h tty.h commands.h
  192. slip.obj: slip.c global.h mbuf.h iface.h ax25.h slip.h asy.h trace.h
  193. smisc.obj: smisc.c global.h mbuf.h socket.h proc.h remote.h smtp.h tcp.h pc.h
  194. smtpcli.obj: smtpcli.c global.h mbuf.h cmdparse.h proc.h socket.h timer.h netuser.h smtp.h dirutil.h
  195. smtpserv.obj: smtpserv.c global.h mbuf.h cmdparse.h socket.h proc.h smtp.h
  196. socket.obj: socket.c global.h mbuf.h netuser.h timer.h iface.h ip.h tcp.h udp.h ax25.h lapb.h netrom.h nr4.h proc.h usock.h socket.h config.h
  197. tcpcmd.obj: tcpcmd.c global.h timer.h mbuf.h netuser.h internet.h tcp.h cmdparse.h commands.h
  198. tcpdump.obj: tcpdump.c global.h mbuf.h netuser.h internet.h timer.h tcp.h ip.h trace.h
  199. tcpin.obj: tcpin.c global.h timer.h mbuf.h netuser.h internet.h tcp.h icmp.h iface.h ip.h
  200. tcpout.obj: tcpout.c global.h timer.h mbuf.h netuser.h internet.h tcp.h ip.h
  201. tcpsubr.obj: tcpsubr.c global.h timer.h mbuf.h netuser.h internet.h tcp.h ip.h
  202. tcptimer.obj: tcptimer.c global.h mbuf.h timer.h netuser.h internet.h tcp.h
  203. tcpuser.obj: tcpuser.c global.h timer.h mbuf.h netuser.h socket.h internet.h tcp.h ip.h icmp.h proc.h
  204. telnet.obj: telnet.c global.h mbuf.h socket.h telnet.h session.h proc.h tty.h commands.h netuser.h
  205. timer.obj: timer.c global.h timer.h proc.h pc.h
  206. tnserv.obj: tnserv.c global.h mbuf.h socket.h telnet.h session.h proc.h tty.h commands.h
  207. trace.obj: trace.c global.h mbuf.h iface.h trace.h
  208. ttydriv.obj: ttydriv.c global.h mbuf.h tty.h
  209. udp.obj: udp.c global.h mbuf.h netuser.h udp.h ip.h internet.h icmp.h
  210. udpcmd.obj: udpcmd.c global.h mbuf.h netuser.h udp.h internet.h cmdparse.h commands.h
  211. udpdump.obj: udpdump.c global.h mbuf.h netuser.h internet.h udp.h ip.h
  212. version.obj: version.c
  213.